summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/java/org/yuzu/yuzu_emu/features/settings/model/view/PremiumSingleChoiceSetting.java
blob: 0c4570c8d752f3da7dfe92307fa3f773b1ba8369 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package org.yuzu.yuzu_emu.features.settings.model.view;

import android.content.SharedPreferences;
import android.preference.PreferenceManager;

import org.yuzu.yuzu_emu.YuzuApplication;
import org.yuzu.yuzu_emu.R;
import org.yuzu.yuzu_emu.features.settings.model.Setting;
import org.yuzu.yuzu_emu.features.settings.ui.SettingsFragmentView;

public final class PremiumSingleChoiceSetting extends SettingsItem {
    private int mDefaultValue;

    private int mChoicesId;
    private int mValuesId;
    private SettingsFragmentView mView;

    private static SharedPreferences mPreferences = PreferenceManager.getDefaultSharedPreferences(YuzuApplication.getAppContext());

    public PremiumSingleChoiceSetting(String key, String section, int titleId, int descriptionId,
                                      int choicesId, int valuesId, int defaultValue, Setting setting, SettingsFragmentView view) {
        super(key, section, setting, titleId, descriptionId);
        mValuesId = valuesId;
        mChoicesId = choicesId;
        mDefaultValue = defaultValue;
        mView = view;
    }

    public int getChoicesId() {
        return mChoicesId;
    }

    public int getValuesId() {
        return mValuesId;
    }

    public int getSelectedValue() {
        return mPreferences.getInt(getKey(), mDefaultValue);
    }

    /**
     * Write a value to the backing int. If that int was previously null,
     * initializes a new one and returns it, so it can be added to the Hashmap.
     *
     * @param selection New value of the int.
     * @return null if overwritten successfully otherwise; a newly created IntSetting.
     */
    public void setSelectedValue(int selection) {
        final SharedPreferences.Editor editor = mPreferences.edit();
        editor.putInt(getKey(), selection);
        editor.apply();
        mView.showToastMessage(YuzuApplication.getAppContext().getString(R.string.design_updated), false);
    }

    @Override
    public int getType() {
        return TYPE_SINGLE_CHOICE;
    }
}